home *** CD-ROM | disk | FTP | other *** search
/ Teach Yourself Web Publi…sional Reference Edition) / Teach Yourself Web Publishing HTML 3.2.iso / mac / iso9660 / SOURCE / CHAP27 / HOMEC.TXT < prev    next >
Text File  |  1996-05-28  |  454b  |  20 lines

  1. #!/bin/sh
  2.  
  3. # this is the file that contains the number of accesses.
  4. countfile=/home/www/Web/Examples/More_HTML/chap09/home.count
  5.  
  6. # here's where we update the current count; every time this
  7. # script is run we increment the number
  8. nums=`cat $countfile`
  9. nums=`expr $nums + 1`
  10.  
  11. # now update the countfile itself
  12. echo $nums > /tmp/countfile.$$
  13. cp /tmp/countfile.$$ $countfile
  14. rm /tmp/countfile.$$
  15.  
  16.  
  17. # and output the new number
  18. echo $nums
  19.  
  20.